home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6900 < prev    next >
Encoding:
Text File  |  1996-08-05  |  738 b   |  42 lines

  1. Path: gradine.cis.upenn.edu!skramiah
  2. From: skramiah@gradine.cis.upenn.edu (Senthil K. Ramiah)
  3. Newsgroups: comp.lang.c
  4. Subject: Link list Vs Memory block
  5. Date: 16 Feb 1996 02:47:34 GMT
  6. Organization: University of Pennsylvania
  7. Message-ID: <4g0r86$fk5@netnews.upenn.edu>
  8. NNTP-Posting-Host: gradine.cis.upenn.edu
  9.  
  10. Hi Everyone
  11. Consider the following program segment.
  12.  
  13. struct struct_s
  14. {
  15.     int i;
  16.     char c;
  17. };
  18. main()
  19. {
  20.     struct struct_s *s1;
  21.  
  22.     s1 = malloc(sizeof(struct struct_s) * 2);
  23.  
  24.     s1->i =1; s1->c ='a';
  25.     s1++;
  26.     s1->i =2; s1->c = 'b';
  27. }
  28.  
  29. My questions are:
  30.  
  31. 1) How safe is it to use the above method
  32.    instead of a link list.
  33.  
  34. 2) Will this implementation work on all platforms.
  35.  
  36. Thanx.
  37. -Senthil.
  38.  
  39. skramiah@gradient.cis.upenn.edu
  40. -- 
  41.  fortune
  42.